const crypto/tls.maxPlaintext
8 uses
crypto/tls (current package)
common.go#L63: maxPlaintext = 16384 // maximum plaintext payload length
conn.go#L415: if len(plaintext) > maxPlaintext+1 {
conn.go#L693: if len(data) > maxPlaintext {
conn.go#L897: return maxPlaintext
conn.go#L901: return maxPlaintext
conn.go#L932: return maxPlaintext // avoid overflow in multiply below
conn.go#L936: if n > maxPlaintext {
conn.go#L937: n = maxPlaintext
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |